Home | History | Annotate | Download | only in SDL Cocoa Application

Lines Matching refs:appName

47     NSString *appName = 0;
52 appName = [dict objectForKey: @"CFBundleName"];
54 if (![appName length])
55 appName = [[NSProcessInfo processInfo] processName];
57 return appName;
103 - (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName
111 [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]];
118 [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]];
120 [self fixMenu:[menuItem submenu] withAppName:appName];
133 NSString *appName;
135 appName = getApplicationName();
139 title = [@"About " stringByAppendingString:appName];
144 title = [@"Hide " stringByAppendingString:appName];
154 title = [@"Quit " stringByAppendingString:appName];